bug report
authorJoey Hess <joeyh@joeyh.name>
Wed, 10 Sep 2025 14:16:52 +0000 (10:16 -0400)
committerJoey Hess <joeyh@joeyh.name>
Wed, 10 Sep 2025 14:16:52 +0000 (10:16 -0400)
doc/bugs/get_from_local_git_remote_slow_because_reconcileStaged_runs_for_each_file.mdwn [new file with mode: 0644]

diff --git a/doc/bugs/get_from_local_git_remote_slow_because_reconcileStaged_runs_for_each_file.mdwn b/doc/bugs/get_from_local_git_remote_slow_because_reconcileStaged_runs_for_each_file.mdwn
new file mode 100644 (file)
index 0000000..efdd32b
--- /dev/null
@@ -0,0 +1,5 @@
+reconcileStaged runs `git write-tree` to see if anything has changed, which
+can be slow in large repos.
+
+It should be possible for Remote.Git to cache the state so this doesn't
+happen once per file. --[[Joey]]